08. Quizzes: Maven Projects

Quizzes: Maven Projects

What are the required elements on the project tag at the top level of Maven POM.

SOLUTION:
  • `modelVersion`
  • `groupId`
  • `version`

How can you create a Maven project?

SOLUTION:
  • Using the command `mvn archetype:generate` and selecting an archetype as template.
  • Creating the `pom.xml` and the directories manually.